home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1997 / MacHack 1997.toast / Hacks / Hacks ’97 / Warrior’s Progress / source code / Source / Libraries / Broadcaster / Protocols / PreparingToClose.h < prev    next >
Encoding:
Text File  |  1997-06-28  |  334 b   |  20 lines  |  [TEXT/CWIE]

  1. // PreparingToClose.h
  2.  
  3. #ifndef PreparingToClose_h
  4. #define PreparingToClose_h
  5.  
  6. #ifndef ContextUser_h
  7. #include "ContextUser.h"
  8. #endif
  9. #ifndef SavingOption_h
  10. #include "SavingOption.h"
  11. #endif
  12.  
  13. class PreparingToClose: public ContextUser
  14.   {
  15.     public:
  16.         virtual void PrepareToClose( SavingOption save = SavingOption::ask ) = 0;
  17.   };
  18.  
  19. #endif
  20.